home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / C / XTABS200.ZIP / ASC_DEF.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-03  |  1.1 KB  |  42 lines

  1. /* ASC_DEF.H : Macros which may be generated by XTABS when writing
  2. to C_TEXT destination.  XTABS warns if this happens.
  3. NOTE THAT all these macros' values must be quoted texts.
  4. (c) 1995 by Andrew Stephenson -- Part of XTABS file set : 2feb95 */
  5.  
  6. #define ASC_NUL    "\000"
  7. #define ASC_SOH    "\001"
  8. #define ASC_STX    "\002"
  9. #define ASC_ETX    "\003"
  10. #define ASC_EOT    "\004"
  11. #define ASC_ENQ    "\005"
  12. #define ASC_ACK    "\006"
  13. #define ASC_BEL    "\007"
  14. #define ASC_BS    "\010"
  15. #define ASC_HT    "\011"
  16. #define ASC_LF    "\012"
  17. #define ASC_VT    "\013"
  18. #define ASC_FF    "\014"
  19. #define ASC_CR    "\015"
  20. #define ASC_SO    "\016"
  21. #define ASC_SI    "\017"
  22. #define ASC_DLE    "\020"
  23. #define ASC_DC1    "\021"
  24. #define ASC_DC2    "\022"
  25. #define ASC_DC3    "\023"
  26. #define ASC_DC4    "\024"
  27. #define ASC_NAK    "\025"
  28. #define ASC_SYN    "\026"
  29. #define ASC_ETB    "\027"
  30. #define ASC_CAN    "\030"
  31. #define ASC_EM    "\031"
  32. #define ASC_SUB    "\032"
  33. #define ASC_ESC    "\033"
  34. #define ASC_FS    "\034"
  35. #define ASC_GS    "\035"
  36. #define ASC_RS    "\036"
  37. #define ASC_VS    "\037"
  38.  
  39. #define    ASC_DEL    "\177"
  40.  
  41. /* End */
  42.